Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@wdio/logger
Advanced tools
The @wdio/logger package is a utility used within the WebdriverIO testing framework to facilitate logging. It allows developers to create namespaced loggers that can be used to output messages to the console or to files, depending on the configuration. It is designed to work seamlessly with the WebdriverIO ecosystem but can also be used independently for logging purposes in Node.js applications.
Creating a Logger Instance
This feature allows you to create a new logger instance with a specific namespace. You can then use this instance to log messages at different levels, such as info, warn, error, etc.
const logger = require('@wdio/logger').default('my-logger');
logger.info('This is an info message.');
Setting Log Levels
This feature allows you to set the log level for a specific logger instance. Messages below the set level will not be logged.
const logger = require('@wdio/logger').default('my-logger');
logger.setLevel('info');
logger.info('This will be logged.');
logger.debug('This will not be logged.');
Logging Messages
This feature is used to log messages at different severity levels. The available methods are info, warn, error, and others, each corresponding to a level of importance.
const logger = require('@wdio/logger').default('my-logger');
logger.info('Informational message');
logger.warn('Warning message');
logger.error('Error message');
Winston is a multi-transport async logging library for Node.js. It is one of the most popular logging libraries and offers more flexibility and configuration options compared to @wdio/logger. It supports multiple storage options for logs, such as files, databases, and remote services.
Pino is a very low overhead Node.js logger, which focuses on performance. It provides a different set of trade-offs compared to @wdio/logger, emphasizing speed and efficiency over configurability and integration with specific frameworks like WebdriverIO.
Bunyan is a simple and fast JSON logging library for Node.js services. It has similar functionalities to @wdio/logger but also includes features like log rotation and streams, which can be more suitable for complex logging needs.
A helper utility for logging of WebdriverIO packages
This package is used across all WebdriverIO packages to log information using the loglevel
package. It can also be used for any other arbitrary Node.js project.
To install the package just call
$ npm install @wdio/logger
or when adding it to a WebdriverIO subpackage:
$ lerna add @wdio/logger --scope <subpackage>
The package exposes a logger function that you can use to register an instance for your scoped package:
import logger from '@wdio/logger'
const log = logger('myPackage')
log.info('some logs')
For more info see loglevel
package on NPM.
FAQs
A helper utility for logging of WebdriverIO packages
The npm package @wdio/logger receives a total of 1,607,771 weekly downloads. As such, @wdio/logger popularity was classified as popular.
We found that @wdio/logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.